home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Database / Evaluator / SQLWindow.h < prev    next >
Text File  |  1993-07-21  |  349b  |  20 lines

  1.  
  2. #import <objc/Object.h>
  3.  
  4. @interface SQLWindow:Object
  5. {
  6.     id queryView;
  7.     id resultsView;
  8.     id database;
  9. }
  10.  
  11. - initWithFile:(const char *)filename;
  12. - database;
  13.  
  14. - evaluate:sender; /* makes the database evaluate the contents of the query view */
  15.  
  16. - clear:sender; /* clears the results view */
  17. - print:sender; /* prints the results view */
  18.  
  19. @end
  20.